We generall access ->next directly.
if (rd && rd->response_id == response_id)
gtk_widget_set_sensitive (widget, setting);
- tmp_list = g_list_next (tmp_list);
+ tmp_list = tmp_list->next;
}
g_list_free (children);
if (rd && rd->response_id == response_id)
gtk_widget_grab_default (widget);
- tmp_list = g_list_next (tmp_list);
+ tmp_list = tmp_list->next;
}
g_list_free (children);
return widget;
}
- tmp_list = g_list_next (tmp_list);
+ tmp_list = tmp_list->next;
}
g_list_free (children);